home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / beveled-pattern-bullet.scm < prev    next >
Text File  |  2009-12-15  |  3KB  |  97 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; Beveled pattern bullet for web pages
  5. ; Copyright (C) 1997 Federico Mena Quintero
  6. ; federico@nuclecu.unam.mx
  7. ;
  8. ; This program is free software; you can redistribute it and/or modify
  9. ; it under the terms of the GNU General Public License as published by
  10. ; the Free Software Foundation; either version 2 of the License, or
  11. ; (at your option) any later version.
  12. ;
  13. ; This program is distributed in the hope that it will be useful,
  14. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. ; GNU General Public License for more details.
  17. ;
  18. ; You should have received a copy of the GNU General Public License
  19. ; along with this program; if not, write to the Free Software
  20. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.  
  23. (define (script-fu-beveled-pattern-bullet diameter pattern transparent)
  24.   (let* (
  25.         (img (car (gimp-image-new diameter diameter RGB)))
  26.         (background (car (gimp-layer-new img diameter diameter RGBA-IMAGE "Bullet" 100 NORMAL-MODE)))
  27.         (bumpmap (car (gimp-layer-new img diameter diameter RGBA-IMAGE "Bumpmap" 100 NORMAL-MODE)))
  28.         )
  29.  
  30.     (gimp-context-push)
  31.  
  32.     (gimp-image-undo-disable img)
  33.     (gimp-image-add-layer img background -1)
  34.     (gimp-image-add-layer img bumpmap -1)
  35.  
  36.     ; Create pattern layer
  37.  
  38.     (gimp-context-set-background '(0 0 0))
  39.     (gimp-edit-fill background BACKGROUND-FILL)
  40.     (gimp-context-set-pattern pattern)
  41.     (gimp-edit-bucket-fill background PATTERN-BUCKET-FILL NORMAL-MODE 100 0 FALSE 0 0)
  42.  
  43.     ; Create bumpmap layer
  44.  
  45.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  46.  
  47.     (gimp-context-set-background '(127 127 127))
  48.     (gimp-ellipse-select img 1 1 (- diameter 2) (- diameter 2) CHANNEL-OP-REPLACE TRUE FALSE 0)
  49.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  50.  
  51.     (gimp-context-set-background '(255 255 255))
  52.     (gimp-ellipse-select img 2 2 (- diameter 4) (- diameter 4) CHANNEL-OP-REPLACE TRUE FALSE 0)
  53.     (gimp-edit-fill bumpmap BACKGROUND-FILL)
  54.  
  55.     (gimp-selection-none img)
  56.  
  57.     ; Bumpmap
  58.  
  59.     (plug-in-bump-map RUN-NONINTERACTIVE img background bumpmap 135 45 2 0 0 0 0 TRUE FALSE 0)
  60.  
  61.     ; Background
  62.  
  63.     (gimp-context-set-background '(0 0 0))
  64.     (gimp-ellipse-select img 0 0 diameter diameter CHANNEL-OP-REPLACE TRUE FALSE 0)
  65.     (gimp-selection-invert img)
  66.     (gimp-edit-clear background)
  67.     (gimp-selection-none img)
  68.  
  69.     (gimp-image-set-active-layer img background)
  70.     (gimp-image-remove-layer img bumpmap)
  71.  
  72.     (if (= transparent FALSE)
  73.         (gimp-image-flatten img))
  74.  
  75.     (gimp-image-undo-enable img)
  76.     (gimp-display-new img)
  77.  
  78.     (gimp-context-pop)
  79.   )
  80. )
  81.  
  82.  
  83. (script-fu-register "script-fu-beveled-pattern-bullet"
  84.   _"_Bullet..."
  85.   _"Create a beveled pattern bullet for webpages"
  86.   "Federico Mena Quintero"
  87.   "Federico Mena Quintero"
  88.   "July 1997"
  89.   ""
  90.   SF-ADJUSTMENT _"Diameter"               '(16 1 150 1 10 0 1)
  91.   SF-PATTERN    _"Pattern"                "Wood"
  92.   SF-TOGGLE     _"Transparent background" FALSE
  93. )
  94.  
  95. (script-fu-menu-register "script-fu-beveled-pattern-bullet"
  96.                          "<Image>/File/Create/Web Page Themes/Beveled Pattern")
  97.